home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / InkMonitor / inkmonitor.exe / {app} / Xml2Html.xsl < prev   
Extensible Markup Language  |  2002-04-10  |  3KB  |  93 lines

  1. <?xml version="1.0" encoding="windows-1250"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  3. <!--
  4.         Copyright ⌐ 1999-2001 POKLUDA Development & Education; All rights reserved.
  5.         Contact:  http://www.pokluda.cz
  6.                   info@pokluda.cz
  7. -->
  8.  
  9. <xsl:template match="/">
  10.  <html>
  11.  <head><title>InkMonitor verze 2.1</title></head>
  12.  <style type="text/css">
  13.  body {
  14.     FONT-SIZE: 10pt; BACKGROUND: white; COLOR: black; FONT-FAMILY: Tahoma, Arial, Helvetica, sans-serif;
  15.  }
  16.  a {
  17.     TEXT-DECORATION: none
  18.  }
  19.  a:link {
  20.     COLOR: navy; TEXT-DECORATION: none
  21.  }
  22.  a:visited {
  23.     COLOR: navy; TEXT-DECORATION: none
  24.  }
  25.  a:hover {
  26.     COLOR: red; TEXT-DECORATION: underline
  27.  }
  28.  td.Group {
  29.     FONT-WEIGHT: 800; BACKGROUND: #00319c; COLOR: white
  30.  }
  31. td.Text {
  32.     FONT-SIZE: 10pt
  33.  }
  34. table.Navigation {
  35.     FONT-SIZE: 10pt
  36.  }
  37.  h2 {
  38.     font-weight : 400; text-align: center; font-size: 18pt; margin-bottom: 0
  39.  }
  40.  h3 {
  41.     font-weight : 300; text-align: center; font-size: 12pt; margin-top: 0
  42.  }
  43.  .cite {
  44.      font-family:Tahoma, Arial, Helvetica, sans-serif; font-size:8pt; text-align: right
  45. }
  46.  
  47.  </style>      
  48.  <body>
  49.  <h2>InkMonitor verze 2.1</h2> 
  50.  <h3>Generovan² datov² soubor</h3> 
  51.  <div align="center">
  52.   <xsl:apply-templates select="//printed" />        
  53.  </div>
  54.  
  55.  <p>Tato tabulka byla vytvo°ena programem InkMonitor. Program InkMonitor je freeware 
  56.  programem, kter² zjiÜ¥uje mno₧stvφ inkoustu/toneru ve VaÜφ inkoustovΘ nebo laserovΘ
  57.  tiskßrn∞. Program byl vytvo°en firmou <a href="http://www.pokluda.cz">Pokluda</a> a 
  58.  Vy si jej m∙₧ete <a href="http://www.pokluda.cz/stazeni.asp">stßhnout</a> 
  59.  v nejaktußln∞jÜφ verzi z naÜeho serveru. Technickß podpora k programu je k dispozici 
  60.  na <a href="http://www.pokluda.cz/podpora/inkmonitor.asp">tΘto strßnce</a>.</p>
  61.  <hr size="1"/>
  62.  <div class="cite" align="right">Copyright ⌐ 1999-2001 <a class="cite" href="http://www.pokluda.com/">Pokluda</a>
  63.  </div>
  64.  </body>
  65.  </html>
  66. </xsl:template>
  67.  
  68. <xsl:template match="//printed">
  69.   <table class="Navigation" cellSpacing="0" cellPadding="3" width="640" border="1" bordercolor="black" bordercolordark="white">
  70.     <tr>
  71.      <td class="Group">Datum</td>
  72.      <td class="Group">╚as</td>
  73.      <td class="Group">NejlepÜφ</td>
  74.      <td class="Group">Normßlnφ</td>
  75.      <td class="Group">Ekonomick²</td>
  76.      <td class="Group">U₧ivatel</td>
  77.      <td class="Group">Poznßmka</td>
  78.     </tr>
  79.   <xsl:for-each select="data">
  80.     <tr>
  81.     <xsl:for-each select="*">
  82.     <td>
  83.     <xsl:value-of/>
  84.     </td>
  85.     </xsl:for-each>
  86.     </tr>
  87.     </xsl:for-each>
  88.     </table>
  89. </xsl:template>
  90.  
  91. </xsl:stylesheet>
  92.  
  93.